home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / shells / kiss-0.11 / kiss-0 / kiss / src / yyerror.c < prev   
C/C++ Source or Header  |  1995-03-23  |  137b  |  10 lines

  1. #include "kiss.h"
  2.  
  3. int yyerror (char *msg)
  4. {
  5.     if (inputparsed)
  6.     warning ("[parser]: failed to analyze input");
  7.     return (0);
  8. }
  9.     
  10.